home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today - The Disc! 5 / CD-ROM Today - The Disc (Issue 5)(November 1994).ISO / mac / Mac shareware / Education / RLaB / help / plot < prev    next >
Text File  |  1994-09-21  |  3KB  |  81 lines

  1. plot:
  2.  
  3. Synopsis: RLaB graphics interface
  4.  
  5. Syntax: plot ( A )
  6.  
  7. Description:
  8.  
  9.     Plot A in the current sub-plot in the current plot-window.  A
  10.     can be a matrix, in which case the columns are plotted against
  11.     the 1st column. If A is a column vector, then the column is
  12.     plotted versus the row values. A can also be a list, in which
  13.     case each matrix in the list is plotted (this is a good way to
  14.     plot data with different scales).
  15.  
  16.     Plot and its related functions define a user interface to the
  17.     PLPLOT grpahics library. The PLPLOT graphics library can
  18.     produce output on X-windows, DOS, OS/2, Amiga, Tektronix,
  19.     PostScipt, and other output devices.
  20.  
  21.     The plot interface operation is based upon two important
  22.     concepts: the current plot-window, and the current sub-plot.
  23.  
  24.     The current plot-window is a valid concept only if selected
  25.     output device supports multiple windows (X-windows for
  26.     example).
  27.  
  28.     The current sub-plot should be available for all devices,
  29.     since sub-plots are individual plots that co-exist on the same
  30.     page, or display.
  31.  
  32.     Invoking pstart() will create a plot-window. The newly created
  33.     plot-window will be the current plot-window. If more than one
  34.     plot-window has been created, then the current window can be
  35.     selected with the pwin() function. The current plot-window can
  36.     be closed with pclose(). All of the plot-windows can be closed
  37.     with pend().
  38.  
  39.     Each plot-window can be divided up into more than 1 sub-plot
  40.     (the default). The number and arrangement of the sub-plots is
  41.     specified by the user when pstart() is invoked. All plot
  42.     manipulation functions, such as plstyle(), plgrid(), xlabel(),
  43.     etc... work on the current sub-plot. When plot() is used the
  44.     current sub-plot is created, after which the current sub-plot
  45.     is incremented. The sub-plots are incremented to the right,
  46.     and down (the same way you read an English language book).
  47.  
  48.     The following is a list of the plot related functions.
  49.  
  50.     pstart ( NCOL, NROW, DEVICE )
  51.     pwin ( NWIN )
  52.     showpwin ( )
  53.     pclose ( )
  54.     pend ( )
  55.  
  56.     plot ( DATA )
  57.     plhist ( DATA )
  58.     plhistx ( DATA )
  59.     xlabel ( XLABEL )
  60.     ylabel ( YLABEL )
  61.     ptitle ( PTITLE )
  62.     plimits ( XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX )
  63.     plgrid ( GRID_STY_X, GRID_STY_Y )
  64.     plgrid3 ( GRID_STY_X, GRID_STY_Y, GRID_STY_Z )
  65.     plaxis ( X_STR, Y_STR )
  66.     plstyle ( PSTYLE )
  67.  
  68.     plot3 ( L3D )
  69.     plmesh ( L3D )
  70.     zlabel ( ZLABEL )
  71.     plalt ( ALT )
  72.     plaz ( AZ )
  73.  
  74.     plfont ( FONT )
  75.     plwid ( WIDTH )
  76.     plptex ( TEXT, X, Y, DX, DY, JUST )
  77.     plegend ( DESCRIPTION )
  78.  
  79.     plprint ( FILENM, DEVICE )
  80.     replot ( )
  81.